home *** CD-ROM | disk | FTP | other *** search
/ IRIX Installation Tools & Overlays 2002 November / SGI IRIX Installation Tools & Overlays 2002 November - Disc 4.iso / dist / motif21_dev.idb / usr / Motif-2.1 / include / Xm / ScrolledW.h.z / ScrolledW.h
C/C++ Source or Header  |  2002-10-15  |  2KB  |  61 lines

  1. /* 
  2.  *  @OSF_COPYRIGHT@
  3.  *  COPYRIGHT NOTICE
  4.  *  Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
  5.  *  ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
  6.  *  the full copyright text.
  7. */ 
  8. /* 
  9.  * HISTORY
  10. */ 
  11. /*   $XConsortium: ScrolledW.h /main/11 1995/07/13 17:56:18 drk $ */
  12. /*
  13. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  14. #ifndef _XmScrolledWindow_h
  15. #define _XmScrolledWindow_h
  16.  
  17. #include <Xm/Xm.h>
  18.  
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22.  
  23.  
  24. #ifndef XmIsScrolledWindow
  25. #define XmIsScrolledWindow(w)    XtIsSubclass(w, xmScrolledWindowWidgetClass)
  26. #endif /* XmIsScrolledWindow */
  27.  
  28. externalref WidgetClass xmScrolledWindowWidgetClass;
  29.  
  30. typedef struct _XmScrolledWindowClassRec * XmScrolledWindowWidgetClass;
  31. typedef struct _XmScrolledWindowRec      * XmScrolledWindowWidget;
  32.  
  33.  
  34. /********    Public Function Declarations    ********/
  35.  
  36. extern void XmScrolledWindowSetAreas( 
  37.                         Widget w,
  38.                         Widget hscroll,
  39.                         Widget vscroll,
  40.                         Widget wregion) ;
  41. extern Widget XmCreateScrolledWindow( 
  42.                         Widget parent,
  43.                         char *name,
  44.                         ArgList args,
  45.                         Cardinal argCount) ;
  46. extern void XmScrollVisible(
  47.             Widget          scrw,
  48.             Widget          wid,
  49.             Dimension       hor_margin, 
  50.             Dimension       ver_margin) ;
  51.  
  52. /********    End Public Function Declarations    ********/
  53.  
  54.  
  55. #ifdef __cplusplus
  56. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  57. #endif
  58.  
  59. #endif /* _XmScrolledWindow_h */
  60. /* DON'T ADD ANYTHING AFTER THIS #endif */
  61.